home *** CD-ROM | disk | FTP | other *** search
/ MacWorld: Complete Mac Interactive / Macworld Complete Mac Interactive CD)(1994).iso / Software / Graphsoft / Arch Demo / Core.sit / MiniCad 5 Demo.rsrc / STR#_7017.txt < prev    next >
Text File  |  1994-04-15  |  4KB  |  157 lines

  1. Returns the X, Y center of the object that is connected to h.
  2.  
  3. HCenter(h : Handle; VAR X, Y : REAL);
  4.  
  5. Returns the angle of the object that is connected to h.
  6.  
  7. HAngle(h : Handle) : REAL;
  8.  
  9. Returns the height of the object that is connected to h.
  10.  
  11. HHeight(h : Handle) : REAL;
  12.  
  13. Returns the width of the object that is connected to h.
  14.  
  15. HWidth(h : Handle) : REAL;
  16.  
  17. Returns the length of the object that is connected to h.
  18.  
  19. HLength(h : Handle) : REAL;
  20.  
  21. Returns the perimeter of the object that is connected to h.
  22.  
  23. HPerim(h : Handle) : REAL;
  24.  
  25. Returns the area of the object that is connected to h.
  26.  
  27. HArea(h : Handle) : REAL;
  28.  
  29. Returns the alignment of the spreadsheet cell specified by Row, Column.
  30.  
  31. GetCAlign(h : Handle; Row, Column : INTEGER) : INTEGER;
  32.  
  33. Returns the width of the spreadsheet cell specified by Row, Column.
  34.  
  35. GetCWidth(h : Handle; Row, Column : INTEGER) : INTEGER;
  36.  
  37. Returns the number contained in the spreadsheet cell specified by Row, Column.
  38.  
  39. GetCellNum(h : Handle; Row, Column : INTEGER) : REAL;
  40.  
  41. Returns the string contained in the spreadsheet cell specified by Row, Column.
  42.  
  43. GetCellStr(h : Handle; Row, Column : INTEGER) : STRING;
  44.  
  45. Returns TRUE if the spreadsheet cell specified by Row, Column contains a string; otherwise it returns FALSE.
  46.  
  47. CellHasStr(h : Handle; Row, Column : INTEGER) : BOOLEAN;
  48.  
  49. Returns TRUE if the spreadsheet cell specified by Row, Column contains a number; otherwise it returns FALSE.
  50.  
  51. CellHasNum(h : Handle; Row, Column : INTEGER) : BOOLEAN;
  52.  
  53. Returns the number of rows and columns of a spreadsheet that is connected to h.
  54.  
  55. SprdSize(h : Handle; VAR Rows, Columns : INTEGER);
  56.  
  57. Returns the Height, Width, Depth of a 3D object that is connected to ObjectHandle.
  58.  
  59. Get3DInfo(h : Handle; VAR Height, Width, Depth : REAL);
  60.  
  61. Returns the X, Y, Z center of a 3D object that is connected to h.
  62.  
  63. Get3DCntr(h : Handle; VAR X, Y, Z : REAL);
  64.  
  65. Returns the X, Y location of the Index‚Äôth vertex of the polygon that h is connected to.
  66.  
  67. GetPolyPt(ObjectHandle : HANDLE;  Index : INTEGER; VAR X, Y : REAL);
  68.  
  69. Returns the number of vertices in the polygon that h is connected to.
  70.  
  71. GetVertNum(h : Handle) : INTEGER;
  72.  
  73. Returns the start angle and arc angle of an arc that is connected to h.
  74.  
  75. GetArc(h : Handle; VAR StartAngle, ArcAngle : REAL);
  76.  
  77. Returns the horizontal and vertical diameters of a rounded corner of a Rounded Rectangle that is connected to h.
  78.  
  79. GetRRDiam(h : Handle; VAR HorDiameter, VerDiameter : REAL);
  80.  
  81. Returns the X, Y coordinate of a locus that is connected to h.
  82.  
  83. GetLocPt(h : Handle; VAR X,Y : REAL);
  84.  
  85. Returns the rotation of a symbol instance that is connected to h.
  86.  
  87. GetSymRot(h : Handle) : REAL;
  88.  
  89. Returns the symbol name of the symbol that is connected to h.
  90.  
  91. GetSymName(h : Handle) : STRING;
  92.  
  93. Returns the dimension text of the object that is connected to h.
  94.  
  95. GetDimText(h : Handle) : STRING;
  96.  
  97. Returns TRUE if the object connected to h has dimension text, otherwise it returns FALSE.
  98.  
  99. HasDim(h : Handle) : BOOLEAN;
  100.  
  101. Returns the second end point of a line that h is connected to.
  102.  
  103. GetSegPt2(h : Handle; VAR X, Y : REAL);
  104.  
  105. Returns the first end point of a line that h is connected to.
  106.  
  107. GetSegPt1(h : Handle; VAR X, Y : REAL);
  108.  
  109. Returns the text within a text object that h is connected to.
  110.  
  111. GetText(h : Handle) : STRING;
  112.  
  113. Returns TRUE if the object that is connected to h is selected, otherwise it returns FALSE.
  114.  
  115. Selected(h : Handle) : BOOLEAN;
  116.  
  117. Returns style of text connected to h.
  118.  
  119. GetStyle(h : Handle) : INTEGER;
  120.  
  121. Returns point size of text connected to h.
  122.  
  123. GetSize(h : Handle) : INTEGER;
  124.  
  125. Returns font ID of text connected to h.
  126.  
  127. GetFont(h : Handle) : INTEGER;
  128.  
  129. Returns the line style of the object that is connected to h.
  130.  
  131. GetLS(h : Handle) : INTEGER;
  132.  
  133. Returns the line weight, in mils, of the object connected to h.
  134.  
  135. GetLW(h : Handle) : INTEGER;
  136.  
  137. Returns the fill pattern of the object connected to h.
  138.  
  139. GetFPat(h : Handle) : INTEGER;
  140.  
  141. Receives a handle to an object and returns the coordinates of the bounding box in X1, Y1, X2, Y2.
  142.  
  143. GetBBox(h : Handle; VAR X1, Y1, X2, Y2 : REAL);
  144.  
  145. Returns the class of the object that h is connected to.
  146.  
  147. GetClass(h : Handle) : STRING;
  148.  
  149. Returns the name of the object that h is connected to.
  150.  
  151. GetName(h : Handle) : STRING;
  152.  
  153. Returns the object type that h is connected to.
  154.  
  155. GetType(h : Handle) : INTEGER;
  156.  
  157.